Joomla 1.5
	
	1. Open /components/com_adsmanager/adsmanager.html.php
	2. Find the showFieldValue function definition
	3. Within it search for the following code:
	 
	    case 'textarea':
		    echo adsmanager_html::cutLongWord(str_replace(array("\r\n", "\n", "\r"), "<br />", $value))."<br />";
		    break;
	 
	Replace it with:
	 
	    case 'textarea':
		     $dispatcher =& JDispatcher::getInstance();
		     if (JPluginHelper::importPlugin('content','seolinks',true)) {
			   $seorow = new StdClass();
			   $seorow->text = $value;
			   $seorow->id = 0;
			   $dispatcher->trigger('onPrepareContent', array(&$seorow, array()));
			   $value = $seorow->text;
		     }
		     echo adsmanager_html::cutLongWord(str_replace(array("\r\n", "\n", "\r"), "<br />", $value))."<br />";
		     break;
	 
	If you are using the K2 SeoLinks plugin instead of the content plugin, replace 'content' with 'k2' in:
	 
	    if (JPluginHelper::importPlugin('content','seolinks',true))

======================================
Joomla 1.6, 1.7, 2.5

	1. Open /components/com_adsmanager/views/deatils/view.html.php
	2. Find the following lines in the display() function (row 95)
		//
		// Process the content plugins.
		//
		$dispatcher =& JDispatcher::getInstance();
		JPluginHelper::importPlugin('adsmanagercontent');
	3. Replace it with
		//
		// Process the content plugins.
		//
		$dispatcher =& JDispatcher::getInstance();
		/*SEO Links content plugin*/
		if (JPluginHelper::importPlugin('content','seolinks',true)) {
		      $seorow = new StdClass();
		      $seorow->text = $content->ad_text;
		      $seorow->id = 0;
		      $dispatcher->trigger('onContentBeforeDisplay', array('com_adsmanager', &$seorow, array()));
		      $content->ad_text = $seorow->text;
		}
		JPluginHelper::importPlugin('adsmanagercontent');
	 
	If you are using the K2 SeoLinks plugin instead of the content plugin, replace it with:
		//
		// Process the content plugins.
		//
		$dispatcher =& JDispatcher::getInstance();
		/*SEO Links content plugin*/
		if (JPluginHelper::importPlugin('k2','seolinks',true)) {
		      $seorow = new StdClass();
		      $seorow->text = $content->ad_text;
		      $seorow->id = 0;
		      $dispatcher->trigger('onK2AfterDisplay', array(&$seorow, array()));
		      $content->ad_text = $seorow->text;
		}
		JPluginHelper::importPlugin('adsmanagercontent');